home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if ."%JHHOME%".==."". goto nojhhome
- goto continue
- :nojhhome
- echo The environment variable JHHOME has not been set
- goto done
- :continue
- set HL=%JHHOME%\javahelp\lib
- set SS=%JHHOME%\swing
- if .%1.==.. goto usage
- goto test2
- rem check for second param
- :test2
- if .%2.==.. goto usage
- set HS=%1
- set JAR=%2
- goto runit
-
- :usage
- echo Usage [helpset name] [helpset directory or jar]
- goto done
-
- :runit
- set JHW_KP=%HL%\jhtools.jar;%HL%\jhall.jar;%JAR%;%SS%\swingall.jar
- %JHHOME%\javahelp\bin\jhwrap sunw.demo.jhdemo.JHLauncher -jdk -helpset %HS%
-
- :done
-